home *** CD-ROM | disk | FTP | other *** search
- Path: news.bridge.net!news
- From: David Byrden <100101.2547@compuserve.com>
- Newsgroups: comp.lang.c++
- Subject: Re: What is "void CAClass::CBClass::functionname()" ????
- Date: 27 Feb 1996 02:53:52 GMT
- Organization: self-employed
- Message-ID: <4gtro0$20b@news.bridge.net>
- References: <leetn-2602961058380001@192.43.251.144>
- NNTP-Posting-Host: ppp-mia1-52.bridge.net
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
-
-
- >> What is "void CAClass::CBClass::functionname()
-
-
- Class CBClass is "nested" within CAClass. That is, it is declared
- witin the declaration of CAClass. Effectively, it is in CAClass'
- namespace. There is no other special relationship between them.
-
-
- class CAClass{
- class CBClass{
- functionname() ;
- }
- } ;
-
-
-
- David
-
-
-